home *** CD-ROM | disk | FTP | other *** search
/ PD ROM 1 / PD ROM Volume I - Macintosh Software from BMUG (1988).iso / Electronic Messages / InfoMac Digests / InfoMac Vol. 6 / InfoMac 6.52 < prev    next >
Encoding:
Text File  |  1988-06-18  |  18.8 KB  |  554 lines  |  [TEXT/ttxt]

  1.  
  2. List (Unformatted): INFO-MAC DIGEST V6 #52
  3.  
  4.  
  5. INFO-MAC Digest          Monday, 30 May 1988       Volume 6 : Issue 52
  6.  
  7. Today's Topics:
  8.                               SFScrollInit
  9.                Writing INITs, Part 2: Making Life Easier.
  10.              Writing INIT resources. Part 1, the INIT source
  11.                           [Trash Can resource]
  12.                            JoliWriter.sit.hqx
  13.                     MFMenu+, a new version of MFMenu
  14.            SNAP - taking snapshots of stuff under MultiFinder
  15.              KillScores - A new SCORES virus killing program
  16.                              Interferon 1.2
  17.             DUELSC HQX : Scrolling Multiple Hypercard Fields
  18.                         Business Phone (4 parts)
  19.                                 Virus Rx
  20.                           Iconia 6.3 (2 parts)
  21.                          Remember? 1.1 (2 parts)
  22.                            Randomizer Update!
  23.               MPW tool package LookupDeclaration (3 parts)
  24.                            Marienbad: the game
  25.                             MacCompress Info
  26.                   BootCheck -- Hard Disk security INIT
  27.  
  28.  
  29. ----------------------------------------------------------------------
  30.  
  31. Date: 20 Mar 88 23:00:55 GMT
  32. From: bytebug@dhw68k.cts.com (Roger L. Long)
  33. Subject: SFScrollInit
  34.  
  35. [SFScrollInit]
  36.  
  37. SFScrollInit is an INIT from Andy Hertzfeld that enhances Standard File.
  38. Install by dragging it into your system folder.  It causes Standard File
  39. to remember the last scroll position for each directory.  This version
  40. fixes a bug that occured on Mac IIs, and possibly under MultiFinder.
  41.  
  42. [archived as
  43.  
  44. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>INIT-SFSCROLLINIT.HQX
  45.  
  46. - Lance ]
  47.  
  48. ------------------------------
  49.  
  50. Date: 22 Apr 88 16:43:21 GMT
  51. From: jmunkki@santra.UUCP (Juri Munkki)
  52. Subject: Writing INITs, Part 2: Making Life Easier.
  53.  
  54.                 Fixer.c
  55.                 April 22, 1988
  56.                 Written by Juri Munkki
  57.  
  58.                 This source code is in the public domain.
  59.                 The author makes no guarantees.
  60.  
  61. Instructions
  62.  
  63.         Fixer is a very small application that I wrote to faciliate writing
  64.         INIT and other code resources in Lightspeed C.
  65.  
  66. What Does It Do?
  67.  
  68.         Lightspeed C always makes code resources purgeable and places them in
  69.         the application heap. The code files are created by '????' and their
  70.         type is '????'. To make an init resource work, I had to launch ResEdit,
  71.         get info for the file and edit the file type to 'INIT', open the file
  72.         and set the "System Heap" flag of the init resource. The last step is
  73.         not always necessary, but if you're going to patch the system, it's the
  74.         simplest way to do it. I wouldn't recommending placing system patches
  75.         into the application heap.
  76.         
  77.         Fixer looks at a data structure in its resource fork. The file to
  78.         modify should be in the same folder as the fixer application, or
  79.         the name should be a path to the file. It then looks at the type
  80.         and creator fields in the structure and changes the file type and
  81.         creator accordingly.
  82.         
  83.         The FIXE 1000 resource also contains list of resources to be changed.
  84.         Fixer looks for any resources mentioned in the list (the resource type
  85.         and number are significant) and changes the resource attributes and
  86.         name.
  87.  
  88.         If you like the program, let me know.
  89.  
  90.         Juri Munkki
  91.         Helsinki University of Technology Computing Centre
  92.  
  93.         jmunkki@santra.hut.fi
  94.         jmunkki@fingate.bitnet
  95.         
  96.         Otakaari 1, Room Y250A
  97.         SF02150 Espoo, Finland
  98.  
  99. [archived as
  100.  
  101. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>FIXER-LIGHTSPEED-C-SOURCE.TXT
  102.  
  103. - Lance ]
  104.  
  105. ------------------------------
  106.  
  107. Date: 22 Apr 88 16:23:05 GMT
  108. From: jmunkki@santra.UUCP (Juri Munkki)
  109. Subject: Writing INIT resources. Part 1, the INIT source
  110.  
  111.                 SampleInit.c
  112.                 April 22, 1988
  113.                 Written by Juri Munkki
  114.  
  115.                 This source code is in the public domain.
  116.                 The author makes no guarantees.
  117.  
  118. Instructions
  119.  
  120.         I wrote this INIT as a sample to one of my clients.
  121.         They wished to monitor what the user does and generate
  122.         statistics on frequently used actions.
  123.         
  124.         This INIT does nothing useful. It modifies GetNextEvent
  125.         so that instead of returning autoKey events with the
  126.         spacebar, the # character is returned. It should be
  127.         quite a surprise to people who are used to using spaces
  128.         instead of tabs. :-) The INIT has no effect on DAs.
  129.  
  130.         You should have Lightspeed C to use this INIT. The
  131.         structure of an INIT depends highly on the development
  132.         system being used. Lightspeed C places global data
  133.         storage after the program code. This means that you
  134.         can't have more than 32K of code AND static variables.
  135.                 
  136.         The INIT resource itself should have the "System Heap"
  137.         flag set or it will bomb sooner or later. (usually soon)
  138.  
  139.         Please remember to put a 'sysz' resource into your
  140.         INIT, if you're going to need a lot of space. Also
  141.         remember that any dynamic storage that should live
  142.         through launches should be in the system heap.
  143.         
  144.         I hope this helps those who are desperately trying to
  145.         patch the system.
  146.         
  147.                 Juri Munkki
  148.                 jmunkki@santra.hut.fi
  149.                 jmunkki@fingate.bitnet
  150.  
  151. [archived as
  152.  
  153. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>SAMPLEINIT-LIGHTSPEED-C-SOURCE.TXT
  154.  
  155. - Lance ]
  156.  
  157. ------------------------------
  158.  
  159. Date: Mon 25 Apr 88 07:19:41-PDT
  160. From: MANSFIELD%SPRLC.SPAN@STAR.STANFORD.EDU (Used furniture dealer
  161. From: and
  162. Subject: [Trash Can resource]
  163.  
  164. Find enclosed the modified trash can resources that I downloaded from Sumex
  165. a few months ago, they where for the old systems with minifinder, I've
  166. changed them to work with the new system and finder/multifnder.  Anyone
  167. know how to add sound effects? (youll have to try them to see what I mean!)
  168. Theyre in Binhex V4.0 format
  169.  
  170. Thank you
  171. Cheers for now John Mansfield
  172. (alternative e-mail address jfm@dodo.engin.umich.edu)
  173.  
  174. [archived as
  175.  
  176. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>TRASH-CAN-ALTERNATE-RESOURCE.HQX
  177.  
  178. - Lance ]
  179.  
  180. ------------------------------
  181.  
  182. Date: Sat, 23 Apr 88 23:12:53 PDT
  183. From: moriarty@tc.fluke.com (Jeff Meyer)
  184. Subject: JoliWriter.sit.hqx
  185.  
  186. I don't know if you have this on Sumex yet, but it is just one helluva nice
  187. DA -- much better than MockWrite.
  188.  
  189. [archived as
  190.  
  191. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>DA-JOLIWRITER.HQX
  192.  
  193. - Lance ]
  194.  
  195. ------------------------------
  196.  
  197. Date: Wed, 27 Apr 88 03:35:17 CDT
  198. From: werner@rascal.ics.utexas.edu (Werner Uhrig)
  199. Subject: MFMenu+, a new version of MFMenu
  200.  
  201. [Moderator's Note--this INIT provides an alternate way of launching
  202. applications and documents.]
  203.  
  204. [archived as
  205.  
  206. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>INIT-MFMENU-PLUS-13.HQX
  207.  
  208. - Lance ]
  209.  
  210. ------------------------------
  211.  
  212. Date: Mon, 25 Apr 88 23:50:15 PDT
  213. From: moriarty@tc.fluke.com (Jeff Meyer)
  214. Subject: SNAP - taking snapshots of stuff under MultiFinder
  215.  
  216. [archived as
  217.  
  218. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>SNAP-10.HQX
  219.  
  220. - Lance ]
  221.  
  222. ------------------------------
  223.  
  224. Date: Wed, 27 Apr 88 03:47:49 CDT
  225. From: werner@rascal.ics.utexas.edu (Werner Uhrig)
  226. Subject: KillScores - A new SCORES virus killing program
  227.  
  228. [archived as
  229.  
  230. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>KILLSCORES-10.HQX
  231.  
  232. - Lance ]
  233.  
  234. ------------------------------
  235.  
  236. Date: Thu, 5 May 88 12:12:45 PDT
  237. From: dplatt@coherent.com (Dave Platt)
  238. Subject: Interferon 1.2
  239.  
  240. This posting contains Interferon, an application that will search for
  241. and (optionally) attempt to eradicate the nVIR and SCORES viruses (and,
  242. according to the change log, a virus called SNEAK as well... I haven't
  243. heard of this one before).  Interferon is by Robert Woodhead;  it's
  244. free-for-use and free-for-distribution (but not in the public domain).
  245. Woodhead asks for a suitable shareware donation (for the purchase of
  246. hardware for a visually impaired computerist) if Interferon helps you
  247. out.
  248.  
  249. This StuffIt archive contains Interferon 1.2, and a file of
  250. documentation.  The program warns you to read the documentation before
  251. attempting to use the "Eradicate viruses" option.  This is good
  252. advice... "Eradicate" deletes infected files rather than attempting to
  253. repair them.  Unfortunately, the documentation file is in Microsoft
  254. Word format;  it can be read (after a fashion) by those without MS Word
  255. if you have FEdit or MacSnoop and don't mind grovelling through the
  256. file's data fork a sector at a time.
  257.  
  258. Dave Platt                                             VOICE: (415) 493-8805
  259.   USNAIL: Coherent Thought Inc.  3350 West Bayshore #205  Palo Alto CA 94303
  260.   UUCP: ...!{ames,sun,uunet}!coherent!dplatt     DOMAIN: dplatt@coherent.com
  261.   INTERNET:   coherent!dplatt@ames.arpa,    ...@sun.com,    ...@uunet.uu.net
  262.  
  263. [archived as
  264.  
  265. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>INTERFERON-12.HQX
  266.  
  267. - Lance ]
  268.  
  269. ------------------------------
  270.  
  271. Date: Wed, 04 May 88 23:47:29 CDT
  272. From: "Eric H. Romo" <UD069225%NDSUVM1.BITNET@forsythe.stanford.edu>
  273. Subject: DUELSC HQX : Scrolling Multiple Hypercard Fields
  274.  
  275. The file DUELSC HQX contains a HyperCard stack that was Stuffed and
  276. Binhexed. The stack allows for simultaneous scrolling of 2 fields, which
  277. can be modified to include as many fields as one desires by re-writing
  278. the script. I am not the author, but I did download it from CompuServe.
  279. Enjoy.    --Eric.
  280.  
  281. [archived as
  282.  
  283. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>HYPERCARD-DUEL-SCROLL.HQX
  284.  
  285. - Lance ]
  286.  
  287. ------------------------------
  288.  
  289. Date: Thu  5 May 88 09:43:12-EDT
  290. From: Jeff Shulman <SHULMAN@SDR>
  291. Subject: Business Phone (4 parts)
  292.  
  293. [ Uploaded from Delphi by Jeff Shulman ]
  294.  
  295. Name: BUSINESS PHONE
  296. Date: 3-MAY-1988 23:18 by BOBPATIN
  297.  
  298. Business Phone 2.0 is the ULTIMATE "rolodex" stack; you can keep phone #s
  299. and addresses, and the stack automatically maintains 30 different lists
  300. with category names that you edit. You can use the pop-up menu to see any
  301. of the 30 lists at any time.  Macintalk is incorporated for info on data
  302. processing; there is an alarm card for entering up to 15 reminder msgs. for
  303. specific dates and times; the phone card remembers the last 8 #s called,
  304. accesses any directory assistance #s in the US, searches the Area Code
  305. stack, adds new listings to the Area Code stack.  Also implemented is a
  306. nifty auto- search function, auto-compacting, auto-sorting.  SUMMIT
  307. SOFTWARE. This is a SHAREWARE stack.
  308.  
  309. [archived as
  310.  
  311. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>HYPERCARD-BUSINESS-PHONE-20-PART1.HQX
  312. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>HYPERCARD-BUSINESS-PHONE-20-PART2.HQX
  313. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>HYPERCARD-BUSINESS-PHONE-20-PART3.HQX
  314. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>HYPERCARD-BUSINESS-PHONE-20-PART4.HQX
  315.  
  316. - Lance ]
  317.  
  318. ------------------------------
  319.  
  320. Date: Thu, 5 May 88 12:00:27 PDT
  321. From: dplatt@coherent.com (Dave Platt)
  322. Subject: Virus Rx
  323.  
  324. This posting is a StuffIt archive containing Virus Rx, a new virus-scanning
  325. program recently released by Apple Computer.  Virus Rx scans a disk,
  326. looking for all INIT, CDEV, and RDEV files, all INIT resources, and damaged
  327. applications.  It reports its findings in a nicely-formatted display (which
  328. can be saved for future reference).
  329.  
  330. Virus Rx is a virus-scanner only;  it does not attempt to repair damaged
  331. applications or strip out viruses.  If your system becomes infected,
  332. Apple recommends that you back up all data files, reformat your disk,
  333. restore your System stuff and applications from the original distribution
  334. disks (you _do_ keep them write-protected, don't you?) and restore the
  335. data files from your backup.
  336.  
  337. Dave Platt                                             VOICE: (415) 493-8805
  338.   USNAIL: Coherent Thought Inc.  3350 West Bayshore #205  Palo Alto CA 94303
  339.   UUCP: ...!{ames,sun,uunet}!coherent!dplatt     DOMAIN: dplatt@coherent.com
  340.   INTERNET:   coherent!dplatt@ames.arpa,    ...@sun.com,    ...@uunet.uu.net
  341.  
  342. [archived as
  343.  
  344. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>VIRUS-RX-10A2.HQX
  345.  
  346. - Lance ]
  347.  
  348. ------------------------------
  349.  
  350. Date: 8 May 88 02:51:43 GMT
  351. From: chb@tde.lu.se (Christian Bj|rk)
  352. Subject: Iconia 6.3 (2 parts)
  353.  
  354. Iconia 6.3 is a fast and easy way to create the application and
  355. document icons (ICN#) shown in the Finder as well as the rest of
  356. the bundle structure that is needed.
  357.  
  358. [archived as
  359.  
  360. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>ICONIA-63-PART1.HQX
  361. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>ICONIA-63-PART2.HQX
  362.  
  363. - Lance ]
  364.  
  365. ------------------------------
  366.  
  367. Date: Mon  9 May 88 09:25:02-GMT
  368. From: Jeff Shulman <SHULMAN@SDR>
  369. Subject: Remember? 1.1 (2 parts)
  370.  
  371. [ Uploaded from Delphi by Jeff Shulman ]
  372.  
  373. Name: REMEMBER? DA/INIT
  374. Date: 7-MAY-1988 20:51 by DAVEWARKER
  375.  
  376. [ Updated to version 1.1 7-MAY-1988 20:51 by DAVEWARKER. Remember? version
  377. 1.1 fixes a problem with display of icons by INITs following Remember? and
  378. problems with other DAs crashing after having run Remember?. This version
  379. works with Font/DA Juggler Plus and DiskTop 3.0. ]
  380.  
  381. Remember? is a DA and an INIT to help keep track of important occasions,
  382. birthdays, meetings, etc.
  383.  
  384. [archived as
  385.  
  386. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>DA-INIT-REMEMBER-11-PART1.HQX
  387. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>DA-INIT-REMEMBER-11-PART2.HQX
  388.  
  389. - Lance ]
  390.  
  391. ------------------------------
  392.  
  393. Date:     Tue, 10 May 88 10:54:12 PDT
  394. From: PUGH@NMFECC.ARPA
  395. Subject: Randomizer Update!
  396.  
  397. Here is the long awaited Mac II compatible version of Randomizer!
  398. It also handles an unlimited number of files via the famous STR#
  399. resource.  Randomizer no longer saves your screen.  All it does
  400. is copy randomly selected files from folders to other files.
  401. This enables it to work with anything that reads a single data
  402. file.
  403.  
  404. Included in this StuffIt archive is Randomizer, it's MacWrite format
  405. document, Darin Adler's StartUpDesk and it's document, plus SoundInit,
  406. and BeepInit.  These extra things are provided as a courtesy since
  407. Randomizer would be useless without something like them.
  408.  
  409. Please pass this along to CashWe$erve and the other bbi (what is
  410. the plural of bbs?).
  411.  
  412. Jon
  413.  
  414.          N         L                          pugh@nmfecc.arpa
  415.           M    A    L          National Magnetic Fusion Energy Computer Center
  416.            F    T    N             Lawrence Livermore National Laboratory
  417.             E         L                       PO Box 5509 L-561
  418.              C                           Livermore, California 94550
  419.               C                                (415) 423-4239
  420.  
  421. [archived as
  422.  
  423. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>INIT-RANDOMIZER.HQX
  424.  
  425. This version replaces the previous version.
  426.  
  427. - Lance ]
  428.  
  429. ------------------------------
  430.  
  431. Date: Wed, 11 May 88 17:57:04 MET DST
  432. From: norbert@ira.uka.de
  433. Subject: MPW tool package LookupDeclaration (3 parts)
  434.  
  435. The MPW Tool package "LookupDeclaration" contains two MPW tools and a shell
  436. script, which combined allow you to look up MPW Pascal declarations quickly
  437. and comfortably. It is intended as a supplement to Inside Macintosh and to
  438. the various Inside Mac DAs, which provide better information, but in a less
  439. timely manner. LookupDeclaration allows you to work with the most up-to-date
  440. information you have available - the MPW interface texts. Compared to
  441. Search'ing the interfaces, LookupDeclaration works both faster and more
  442. selectively.
  443.  
  444. One of the tools, CreateDeclarationIndex, is used to create an index for the
  445. declarations in the interface files you intend to use. After that, you work
  446. with LookupDeclaration in the most simple way: you just position the insertion
  447. mark in an identifier, or to the right or the left of it, and select
  448. "Lookup Declaration" from the "Find" menu or press Command-L.
  449. LookupDeclaration will figure out the identifier, and open the appropriate
  450. interface text at the position where the identifier is declared. If there
  451. are multiple declarations for the identifier - as may occur for record
  452. components or object methods -, LookupDeclaration will open a dialog box
  453. which lets you select the declaration you really want. Any files will be
  454. opened read-only, so there is no risk of accidently modifying them. Of
  455. course, you still may select and copy text from the interface file.
  456.  
  457. The LookupDeclaration package is a shareware product: the right is granted
  458. to anyone not involved in military products to freely copy, distribute and
  459. test it. If after two week's testing you decide to keep the package, it
  460. must be registered for the shareware price of $20 or 30 DM.
  461.  
  462. The package comes with a manual (a WriteNow document) and an MPW Pascal
  463. Syntax Overview, in a Binhex'ed Stuffit archive.
  464.  
  465. Norbert Lindenberg
  466. norbert@ira.uka.de, unido!uka!norbert.uucp
  467.  
  468. [archived as
  469.  
  470. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>MPW-LOOKUP-DECLARATION-PART1.HQX
  471. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>MPW-LOOKUP-DECLARATION-PART2.HQX
  472. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>MPW-LOOKUP-DECLARATION-PART3.HQX
  473.  
  474. - Lance ]
  475.  
  476. ------------------------------
  477.  
  478. Date: Sat, 14 May 88 14:50 EST
  479. From: DAVID A. BELSLEY <BELSLEY%BCVMS.BITNET@forsythe.stanford.edu>
  480. Subject: Marienbad: the game
  481.  
  482. Here is a Nim-like game for the Mac, adapted from the game played in the
  483. film "Last Year at Marienbad."  Select Instructions from the menu to learn
  484. how to play.  It must be binhexed and unstuffed.  It works on all Macs.
  485.  
  486. [archived as
  487.  
  488. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>GAME-MARIENBAD.HQX
  489.  
  490. - Lance ]
  491.  
  492. ------------------------------
  493.  
  494. Date: Sat 14 May 88 23:29:03-PDT
  495. From: lloyd chambers <M.MA@othello.stanford.edu>
  496. Subject: MacCompress Info
  497.  
  498. I've seen a lot of discusion about a version of compress for the Macintosh.
  499. Since there seems to be a need, I've posted the MacCompress.hqx.
  500. MacCompress is a Macintosh application which compresses/decompresses files
  501. for use with unix "compress".
  502.  
  503. PLEASE put it on as many other bboards as you can.
  504.  
  505. This version compresses with 12, 13, 14, 15 or 16 bits and maps from
  506. CR to LF and vice versa.  It compresses whole folders as well as single
  507. files.  It both compresses and decompresses and will run in as little as
  508. 100K under multifinder.
  509.  
  510. [archived as
  511.  
  512. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>MACCOMPRESS.HQX
  513.  
  514. - Lance ]
  515.  
  516. ------------------------------
  517.  
  518. Date: Wed, 18 May 88 14:08:40 AEST
  519. From: munnari!runx.ips.oz.au!johnr@uunet.uu.net (John Rotenstein)
  520. Subject: BootCheck -- Hard Disk security INIT
  521.  
  522. Boot Check is a simple security system designed to keep irritating
  523. visitors off of your hard disk. This is done by performing a security
  524. check when starting the system.
  525.  
  526. While it can be easily circumvented by booting from floppy, most
  527. irritating users don't tend to be technically capable of realising this fact.
  528.  
  529. And if, by chance, said irritating users happen to discover your
  530. keyboard code, it can be easily and quickly changed.
  531.  
  532. The file is in StuffIt format, with an instructions file enclosed.
  533.  
  534. Distributed under the HappiWare System --
  535.  
  536.         IF YOU LIKE IT, REMEMBER TO SMILE!
  537.  
  538. John Rotenstein           Internet: johnr@runx.ips.oz.au
  539. PO Box 165
  540. Double Bay, NSW 2028.   UUCP: uunet!runx.ips.oz.au!johnr
  541. AUSTRALIA.
  542.  
  543. [archived as
  544.  
  545. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>INIT-BOOTCHECK.HQX
  546.  
  547. - Lance ]
  548.  
  549. ------------------------------
  550.  
  551. End of INFO-MAC Digest
  552. **********************
  553.  
  554. ACTION>